home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 May / PCWMAY06.iso / Software / Freeware / First Page 2006 3.00 / fp2006-final-3.00-setup.exe / {app} / Iscripts / DHTML - User System / screen-res-detection.izs < prev    next >
Text File  |  2005-09-02  |  2KB  |  58 lines

  1. <!NOWIZARD>
  2.  
  3. <!TITLE>Screen resolution detection and notification Script
  4. <!/TITLE>
  5.  
  6. <!BROWSER>FF1+ IE5+ Opr7+<!/BROWSER>
  7.  
  8. <!DESCRIPTION>A script that tests the surfer's screen size, and if it's not a certain size (ie: 800*600), suggests to the surfer to change resolution. Note: If you're screen resolution is 800*600, you will see nagging message appear below, since the resolution set to detect in the script is currently 800*600.
  9. <!/DESCRIPTION> 
  10.  
  11. <!CATEGORY>text animations<!/CATEGORY>
  12.  
  13. <!SCRIPT>
  14. <!-- START OF SCRIPT -->
  15. <script language="JavaScript1.2">
  16. <!--
  17.  
  18. /*
  19. Screen resolution detection and notification Script- 
  20. ⌐ Dynamic Drive (www.dynamicdrive.com)
  21. For full source code, installation instructions,
  22. 100's more DHTML scripts, and Terms Of
  23. Use, visit dynamicdrive.com
  24. */
  25.  
  26. var correctwidth=800
  27. var correctheight=600
  28. if (screen.width!=correctwidth||screen.height!=correctheight)
  29. document.write("This webpage is bested viewed with screen resolution "+correctwidth+"*"+correctheight+". Your current resolution is "+screen.width+"*"+screen.height+". If possible, please change the resolution!")
  30. //-->
  31. </script>
  32. <!-- END OF SCRIPT -->
  33. <!/SCRIPT>
  34.  
  35. <!PREVIEW>
  36. <!-- START OF SCRIPT -->
  37.  
  38. <script language="JavaScript1.2">
  39. <!--
  40.  
  41. /*
  42. Screen resolution detection and notification Script- 
  43. ⌐ Dynamic Drive (www.dynamicdrive.com)
  44. For full source code, installation instructions,
  45. 100's more DHTML scripts, and Terms Of
  46. Use, visit dynamicdrive.com
  47. */
  48.  
  49. var correctwidth=800
  50. var correctheight=600
  51. if (screen.width!=correctwidth||screen.height!=correctheight)
  52. document.write("This webpage is bested viewed with screen resolution "+correctwidth+"*"+correctheight+". Your current resolution is "+screen.width+"*"+screen.height+". If possible, please change the resolution!")
  53. //-->
  54. </script>
  55. <!-- END OF SCRIPT -->
  56. <!/PREVIEW>
  57.  
  58. <!RELATED>NONE<!/RELATED>